From 322cee6129e74bd9ff7595e92e17a77305abffcf Mon Sep 17 00:00:00 2001 From: "kaf24@viper.(none)" Date: Sat, 12 Mar 2005 15:42:39 +0000 Subject: [PATCH] bitkeeper revision 1.1159.270.4 (42330defA42oRGAfkwmQERgN45uyOg) Python packages can be installed to the Python installation's 'native' location, instead of generic /usr/lib/python, by specifying XEN_PYTHON_NATIVE_INSTALL in the environment or on the make command line. Signed-off-by: Keir Fraser --- tools/python/Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tools/python/Makefile b/tools/python/Makefile index 3a42f6047f..a676cdf0e9 100644 --- a/tools/python/Makefile +++ b/tools/python/Makefile @@ -6,8 +6,13 @@ all: build build: CFLAGS="$(CFLAGS)" python setup.py build +ifndef XEN_PYTHON_NATIVE_INSTALL install: all CFLAGS="$(CFLAGS)" python setup.py install --home="$(DESTDIR)/usr" +else +install: all + CFLAGS="$(CFLAGS)" python setup.py install --root="$(DESTDIR)" +endif clean: rm -rf build *.pyc *.pyo *.o *.a *~ -- 2.30.2